home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / MacApp Release 10 - HD Ready / Libraries / Core / Includes / MacAppVersion.h < prev    next >
Encoding:
Text File  |  1996-04-03  |  871 b   |  22 lines  |  [TEXT/MPS ]

  1. // MacAppVersion.h
  2. // Copyright © 1984-96 by Apple Computer, Inc. All rights reserved.
  3.  
  4. // MacApp version strings. Included by both Rez and C++, so only #define's are used. 
  5. // To change the MacApp version number, all you have to change is this file,
  6. // the definition of:
  7. //        MAShortVersion in "{MacApp}Startup Items:1Startup", and
  8. //        the first line in "{MacApp}MacApp.help". 
  9.  
  10. #ifndef __MACAPPVERSION__
  11. #define __MACAPPVERSION__
  12.  
  13. #define MA_SHORT_VERSION    "10"
  14. #define MA_LONG_VERSION        "MacApp® Release 10, © Apple Computer, Inc. 1984-96"
  15. #define MA_COPYRIGHT        "MacApp® Release 10  Copyright © 1984-96 by Apple Computer, Inc. All rights reserved."
  16. #define WRITTEN_WITH_MACAPP    "This program was written with MacApp® Release 10\n© 1984-96 Apple Computer, Inc."
  17. #define MA_VERS_CODE        0x0A, 0x00, final, 0x00
  18.  
  19. #define MACAPP_3_3            1 /* TRUE */
  20.  
  21. #endif // __MACAPPVERSION__
  22.